css: We want to unescape backslashes, not slashes
authorBenjamin Otte <otte@redhat.com>
Fri, 27 May 2011 22:06:46 +0000 (00:06 +0200)
committerBenjamin Otte <otte@redhat.com>
Thu, 2 Jun 2011 00:03:51 +0000 (02:03 +0200)
gtk/gtkcssparser.c

index cd319381955c4a9e48e65bcf758282f40cb89883..5b4ff481961c1da070025d8c1a967cdea2bf986f 100644 (file)
@@ -851,7 +851,7 @@ _gtk_css_parser_resync_internal (GtkCssParser *parser,
 
     switch (*parser->data)
       {
-      case '/':
+      case '\\':
         {
           GString *ignore = g_string_new (NULL);
           _gtk_css_parser_unescape (parser, ignore);